home *** CD-ROM | disk | FTP | other *** search
/ Alles Voor Internet / Tout Pour Internet / alles voor internet.iso / MacInternet™ / Telnet / Terminal 2.2 / Project / Sources / Glue.a < prev    next >
Text File  |  1992-01-17  |  203b  |  10 lines

  1. ; pascal void SendComplete(void);
  2.  
  3. SendComplete    PROC    EXPORT        ; A0 has address of IOParam
  4.  
  5.                 MOVE.L    -4(A0),A0    ; Get busy flag address
  6.                 CLR.B    0(A0)        ; Clear the busy flag (FALSE)
  7.                 RTS
  8.                 
  9.                 END
  10.